home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / qrep096 / simprep.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1996-09-15  |  937 b   |  47 lines

  1. unit Simprep;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, Quickrep, DB, DBTables, StdCtrls, ExtCtrls;
  8.  
  9. type
  10.   TSimpForm = class(TForm)
  11.     SimpRep: TQuickReport;
  12.     TitleBand: TQRBand;
  13.     Image1: TImage;
  14.     QRLabel1: TQRLabel;
  15.     QRLabel2: TQRLabel;
  16.     DetailBand: TQRBand;
  17.     Table1: TTable;
  18.     DataSource1: TDataSource;
  19.     QRDBText1: TQRDBText;
  20.     QRDBText2: TQRDBText;
  21.     QRLabel3: TQRLabel;
  22.     QRDBText3: TQRDBText;
  23.     QRDBText4: TQRDBText;
  24.     QRDBText5: TQRDBText;
  25.     PageFooterBand: TQRBand;
  26.     QRSysData1: TQRSysData;
  27.     QRShape1: TQRShape;
  28.     QRLabel4: TQRLabel;
  29.     QRLabel5: TQRLabel;
  30.     QRLabel6: TQRLabel;
  31.     QRLabel7: TQRLabel;
  32.     QRLabel8: TQRLabel;
  33.   private
  34.     { Private declarations }
  35.   public
  36.     { Public declarations }
  37.   end;
  38.  
  39. var
  40.   SimpForm: TSimpForm;
  41.  
  42. implementation
  43.  
  44. {$R *.DFM}
  45.  
  46. end.
  47.